Welcome to Css!

7.06 背景定位1

background-position:x(水平位置) y(垂直位置)

1、方向定位:top上 bottom下 right右 left左 center中

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<title>css</title>

<style type="text/css">

div{

width:300px;height:200px;

background-color:rgba(0,255,255);

background-image:url(css7.03.01.png);

background-image:url(css7.03.01.png);

background-repeat:no-repeat;

background-position:bottom center;

}

</style>

</head>

<body>

<div></div>

</body>

</html>

返回: